IHipCSV

Usage:

//Iterate every value
foreach(v; csv) //or
//Iterate columns
foreach(v; csv.getColumnRange(0)) //or
//Iterate rows
foreach(v; csv.getRow(0))
//Get the csv cell
csv[x, y]

Members

Functions

columns
size_t columns()
Undocumented in source.
getColumnRange
HipCSVColumnRange getColumnRange(size_t column, size_t startRow)
Undocumented in source. Be warned that the author may not have intended to support it.
getRow
const(string[]) getRow(size_t row)
Undocumented in source.
opApply
int opApply(int delegate(string) dg)
Undocumented in source. Be warned that the author may not have intended to support it.
opIndex
string opIndex(size_t x, size_t y)
Undocumented in source.
path
string path()
Undocumented in source.
rows
size_t rows()
Undocumented in source.

Meta